c42bf6558b9ad389f0c5c82a9c0065d1674f7c58,testsuite/integration/src/test/java/org/jboss/as/testsuite/integration/ejb/remote/client/api/EJBClientAPIUsageTestCase.java,EJBClientAPIUsageTestCase,testSystemExceptionOnSLSBMethod,#,318

Before Change


     */
    @Test
    public void testSystemExceptionOnSLSBMethod() throws Exception {
        final ExceptionThrowingRemote exceptionThrowingBean = EJBClient.getProxy(APP_NAME, MODULE_NAME, null, ExceptionThrowingBean.class.getSimpleName(), ExceptionThrowingRemote.class);
        Assert.assertNotNull("Received a null proxy", exceptionThrowingBean);
        final String exceptionState = "bafasfaj;l";
        try {

After Change


     */
    @Test
    public void testSystemExceptionOnSLSBMethod() throws Exception {
        final StatelessEJBLocator<ExceptionThrowingRemote> locator = new StatelessEJBLocator<ExceptionThrowingRemote>(ExceptionThrowingRemote.class, APP_NAME, MODULE_NAME, ExceptionThrowingBean.class.getSimpleName(), "");
        final ExceptionThrowingRemote exceptionThrowingBean = EJBClient.createProxy(locator);
        Assert.assertNotNull("Received a null proxy", exceptionThrowingBean);
        final String exceptionState = "bafasfaj;l";
        try {